Class Typography

Summary

Fully Qualified Name: CodeIgniter\Typography\Typography

Description

Typography Class

Methods

Name Description Defined By
autoTypography() Auto Typography Typography
formatCharacters() Format Characters Typography
nl2brExceptPre() Convert newlines to HTML line breaks except within PRE tags Typography

Method Details

autoTypography()

Auto Typography

This function converts text, making it typographically correct:

Parameter Name Type Description
$str string
$reduce_linebreaks bool whether

Returns: string

formatCharacters()

Format Characters

This function mainly converts double and single quotes to curly entities, but it also converts em-dashes, double spaces, and ampersands

Parameter Name Type Description
$str string

Returns: string

nl2brExceptPre()

Convert newlines to HTML line breaks except within PRE tags

Parameter Name Type Description
$str string

Returns: string

Top